What is Span?
Introduction
The idea of span answers a simple but powerful question:
Given some vectors, what other vectors can we reach using linear combinations of them?
If you already understand linear combinations, span is the natural next step. It tells us the shape or space formed by all possible combinations.
What Is Span?
The span of a set of vectors is: $$\text{Span}(v_1, v_2, \dots, v_n) = \{a_1 v_1 + a_2 v_2 + \dots + a_n v_n \mid a_i \in \mathbb{R}\}$$
Key points
- You take all possible linear combinations.
- The result is a collection of vectors, not just one.
- The span describes the space those vectors can reach.
Intuition
- One vector spans a line.
- Two non-parallel vectors in $\mathbb{R}^2$ span the entire plane.
- Two parallel vectors still only span a line.
Geometric View
Span is easiest to understand visually.
If you have:
- One vector in the plane → you get a line through the origin.
- Two non-parallel vectors → you get the whole plane.
- Three vectors in $\mathbb{R}^3$ that don’t lie in the same plane → you get all of 3‑space.
Why geometry helps
- Span tells you the “reach” of your vectors.
- It shows whether your vectors cover a line, a plane, or something larger.
Examples
Example 1: Span of a single vector
Let $v = (3,1)$.
Then: $$\text{Span}(v) = \{ t(3,1) \mid t \in \mathbb{R} \}$$ This is a line through the origin.
Example 2: Span of two vectors in the plane
Let
Because these are not multiples of each other, their span is the entire plane $\mathbb{R}^2$.
Example 3: Span of dependent vectors
Let
Since $u = 2v$, they point in the same direction.
Their span is just a line, not a plane.
Example 4: Span in 3D
Let
- $u = (1,0,0)$
- $v = (0,1,0)$
Then: $$\text{Span}(u,v) = \{(a,b,0) \mid a,b \in \mathbb{R}\}$$ This is a plane inside $\mathbb{R}^3$.
Why Span Matters
Span is foundational because it helps us understand:
- Whether a set of vectors can describe an entire space
- Whether we have “enough” vectors to solve a system
- How to build concepts like basis and dimension
- Whether vectors are redundant or useful
Span is one of the simplest and most important ideas in linear algebra.
Exercises
- Describe the span of the vector $(4,2)$ in words.
- Determine whether the vectors $(1,2)$ and $(3,6)$ span a line or the entire plane.
- Compute a general expression for all vectors in $\text{Span}((1,0,1),(0,1,1))$.
- True or false: The vectors $(1,0)$ and $(0,0)$ span the entire plane.
- Let $u = (2,1)$ and $v = (1,-1)$. Do $u$ and $v$ span the plane?
- Write a vector in $\text{Span}((1,2),(2,1))$ by choosing your own coefficients.
- Describe the span of $(0,0,1)$ in $\mathbb{R}^3$.
- Determine whether $(3,1)$ is in the span of $(1,0)$ and $(0,1)$.